home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / tex / sspell14.zip / MAKEFILE.TC < prev    next >
Text File  |  1992-07-06  |  815b  |  43 lines

  1. all: sspell.exe
  2.  
  3. flags = -v
  4. cc = tcc
  5.  
  6. .c.obj:
  7.     $(cc) $(flags) -c $<
  8.  
  9. cache.obj: cache.c cache.h strfn.h
  10.  
  11. cfgload.obj: cfgload.c strfn.h config.h stop.h
  12.  
  13. stop.obj: stop.c config.h error.h stop.h
  14.  
  15. dos.obj: dos.c
  16.  
  17. sspell.obj: sspell.c strfn.h cache.h file.h config.h
  18.  
  19. file.obj: file.h file.c config.h
  20.  
  21. check.obj: check.h check.h config.h
  22.  
  23. root.obj: root.c root.h
  24.  
  25. utility.obj: utility.c utility.h
  26.  
  27. sspell.exe: cache.obj cfgload.obj file.obj sspell.obj check.obj root.obj utility.obj dos.obj stop.obj
  28.     $(cc) $(flags) sspell.obj cache.obj cfgload.obj file.obj check.obj root.obj utility.obj dos.obj stop.obj
  29.  
  30. # utility
  31.  
  32. clean:
  33.     del cache.obj
  34.     del cfgload.obj
  35.     del sspell.obj
  36.     del file.obj
  37.     del check.obj
  38.     del root.obj
  39.     del utility.obj
  40.     del dos.obj
  41.     del stop.obj
  42.     del sspell.exe
  43.